home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / Borland Plateform / Turbo C v3.0 / TIMEB.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-17  |  570 b   |  36 lines

  1. /*  timeb.h
  2.  
  3.     Struct and function declarations for ftime().
  4.  
  5.     Copyright (c) 1987, 1991 by Borland International
  6.     All Rights Reserved.
  7. */
  8.  
  9. #if !defined( __TIMEB_H )
  10. #define __TIMEB_H
  11.  
  12. #if !defined( __DEFS_H )
  13. #include <_defs.h>
  14. #endif
  15.  
  16. struct timeb {
  17.       long  time;
  18.       short millitm;
  19. #if defined(_RTLDLL)
  20.       short _timezone;
  21. #else
  22.       short timezone;
  23. #endif
  24.       short dstflag;
  25.       };
  26.  
  27. #ifdef __cplusplus
  28. extern "C" {
  29. #endif
  30. void _Cdecl ftime(struct timeb *);
  31. #ifdef __cplusplus
  32. }
  33. #endif
  34.  
  35. #endif  /* __TIMEB_H */
  36.